type net/http.http2pipe

16 uses

	net/http (current package)
		h2_bundle.go#L3705: type http2pipe struct {
		h2_bundle.go#L3724: func (p *http2pipe) setBuffer(b http2pipeBuffer) {
		h2_bundle.go#L3733: func (p *http2pipe) Len() int {
		h2_bundle.go#L3744: func (p *http2pipe) Read(d []byte) (n int, err error) {
		h2_bundle.go#L3773: func (p *http2pipe) Write(d []byte) (n int, err error) {
		h2_bundle.go#L3791: func (p *http2pipe) CloseWithError(err error) { p.closeWithError(&p.err, err, nil) }
		h2_bundle.go#L3796: func (p *http2pipe) BreakWithError(err error) { p.closeWithError(&p.breakErr, err, nil) }
		h2_bundle.go#L3800: func (p *http2pipe) closeWithErrorAndCode(err error, fn func()) { p.closeWithError(&p.err, err, fn) }
		h2_bundle.go#L3802: func (p *http2pipe) closeWithError(dst *error, err error, fn func()) {
		h2_bundle.go#L3828: func (p *http2pipe) closeDoneLocked() {
		h2_bundle.go#L3842: func (p *http2pipe) Err() error {
		h2_bundle.go#L3853: func (p *http2pipe) Done() <-chan struct{} {
		h2_bundle.go#L4452: 	body      *http2pipe       // non-nil if expecting DATA frames
		h2_bundle.go#L6014: 		req.Body.(*http2requestBody).pipe = &http2pipe{
		h2_bundle.go#L6311: 	pipe          *http2pipe // non-nil if we have an HTTP entity message body
		h2_bundle.go#L7444: 	bufPipe       http2pipe // buffered pipe with the flow-controlled response payload